// TOWN DIALOGUE SCRIPT
//    Town 91: Anama Temple

begintalkscript;

variables;

short i,j,k,r1,choice;

// Danza

begintalknode;
	tag = 40;
	state = -1;
	nextstate = 1;
	question = "Danza";
	text1 = "There is a young man with dark hair sitting behind the counter. He's polishing a small, beautiful crystal. He speaks in measured, precise tones. _I am called Danza. Pleased to meet you._";
	text5 = "Danza continues to polish a crystal. His handiwork looks like it is of almost vahnatai quality.";
	action = INTRO;

begintalknode;
	state = 1;
	nextstate = 2;
	question = "_What are you doing up here?_";
	text1 = "_I run this shop, where Anama members can buy magic substitutes._";

begintalknode;
	state = 2;
	nextstate = 3;
	question = "_What sort of magic substitutes?_";
	text1 = "_We have found that the best way to get people to refrain from using magic is to come up with substitutes for the more useful spells. For example, I am in charge of distributing crystals. Piercing crystals, for example._";

begintalknode;
	state = 3;
	nextstate = 1;
	question = "_What is a piercing crystal?_";
	text1 = "_The ability to create magical barriers is one of the strongest mage abilities. Piercing crystals can bring those barriers down._";
	text2 = "_We've started to make them at a respectable rate, and other valuable crystal varieties as well. Would you like to purchase some?_";

begintalknode;
	state = 1;
	nextstate = -1;
	question = "_Can we purchase some of your items?_";
	text1 = "You conclude your business.";
	code =
		begin_shop_mode("Danza's Crystals","Danza is not as good as the vahnatai when it comes to crafting magical crystals, but he is very skilled. His wares are made for the Anama and the Anama alone.",55,0,3);
	break;

begintalknode;
	state = 1;
	nextstate = -1;
	condition = 1;
	question = "_I don't need anything._";
	text1 = "_Farewell, then. Keep the faith._";
	action = END_TALK;
